home *** CD-ROM | disk | FTP | other *** search
- on mouseEnter me
- nothing()
- end
-
- on mouseDown me
- nothing()
- end
-
- on mouseUp me
- nothing()
- end
-
- on mouseLeave me
- nothing()
- end
-
- on mouseWithin me
- nothing()
- end
-
- on getBehaviorDescription me
- set endChar to offset("--END OF HEADER", the text of me)
- set endLine to the number of lines in char 1 to endChar of the text of me - 1
- set description to line 1 to endLine of the text of me
- repeat with whichLine = endLine down to 1
- if line whichLine of description = EMPTY then
- delete line whichLine of description
- end if
- end repeat
- delete line 1 of description
- return description
- end
-